const strconv.lowerhex
8 uses
strconv (current package)
ftoa.go#L518: hex := lowerhex
quote.go#L14: lowerhex = "0123456789abcdef"
quote.go#L48: buf = append(buf, lowerhex[s[0]>>4])
quote.go#L49: buf = append(buf, lowerhex[s[0]&0xF])
quote.go#L104: buf = append(buf, lowerhex[byte(r)>>4])
quote.go#L105: buf = append(buf, lowerhex[byte(r)&0xF])
quote.go#L112: buf = append(buf, lowerhex[r>>uint(s)&0xF])
quote.go#L117: buf = append(buf, lowerhex[r>>uint(s)&0xF])
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |